Skip to content

Commit f32bc6e

Browse files
committed
Move contributing author credits from setup.py to core.py
1 parent bbf1371 commit f32bc6e

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

ev3dev/core.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# -----------------------------------------------------------------------------
2-
# Copyright (c) 2015 Ralph Hempel
3-
# Copyright (c) 2015 Anton Vanhoucke
4-
# Copyright (c) 2015 Denis Demidov
2+
# Copyright (c) 2015 Ralph Hempel <[email protected]>
3+
# Copyright (c) 2015 Anton Vanhoucke <[email protected]>
4+
# Copyright (c) 2015 Denis Demidov <[email protected]>
5+
# Copyright (c) 2015 Eric Pascual <[email protected]>
56
#
67
# Permission is hereby granted, free of charge, to any person obtaining a copy
78
# of this software and associated documentation files (the "Software"), to deal

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[sdist_dsc]
2+
package: python-ev3dev

setup.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
from setuptools import setup
22
from git_version import git_version
3-
from spec_version import spec_version
43

5-
# write version to version.py
6-
open("ev3dev/version.py", "w").write("__version__='%s (%s)'\n" % (git_version(), spec_version))
74

85
setup(
96
name='python-ev3dev',
107
version=git_version(),
118
description='Python language bindings for ev3dev',
12-
author='Ralph Hempel/Denis Demidov/Anton Vanhoucke',
9+
author='Ralph Hempel et al - See ev3dev.py for credits',
10+
author_email='[email protected]',
1311
license='MIT',
1412
url='https://github.com/rhempel/ev3dev-lang-python',
1513
include_package_data=True,
16-
py_modules=['ev3dev']
14+
py_modules=['ev3dev'],
15+
install_requires=['pil']
1716
)
1817

0 commit comments

Comments
 (0)