-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
49 lines (45 loc) · 1.22 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import setuptools
import versioneer
with open('README.rst') as f:
readme = f.read()
setuptools.setup(
name='ccstudiodss',
description="Build and load Code Composer Studio projects from the command line using the Java DSS library.",
long_description=readme,
long_description_content_type='text/x-rst',
packages=setuptools.find_packages('src'),
package_dir={'': 'src'},
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
classifiers=[
# complete classifier list: https://pypi.org/pypi?%3Aaction=list_classifiers
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
entry_points={
'console_scripts': [
'dss = ccstudiodss.cli:cli',
],
'pytest11': [
'ccstudiodss = ccstudiodss.pytest [test]',
]
},
install_requires=[
'attrs',
'click',
'lxml',
],
extras_require={
'java': [
'jpype1 >= 1.1.2, == 1.*',
],
'dev': [
'gitignoreio',
],
'test': [
'pytest',
],
},
)