-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (36 loc) · 1.04 KB
/
setup.py
File metadata and controls
41 lines (36 loc) · 1.04 KB
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
from setuptools import setup, find_packages
import versioneer
def readfile(filepath):
with open(filepath) as f:
return f.read()
setup(
name='qtgui',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='',
long_description=readfile('README.md'),
author='Jaan Tollander de Balsch',
author_email='de.tollander@aalto.fi',
url='https://github.com/jaantollander/crowddynamics-qtgui',
license=readfile('LICENSE'),
packages=find_packages(),
entry_points={
'console_scripts': [
'crowddynamics-qtgui=qtgui.cli:main'
]
},
include_package_data=True,
install_requires=[],
zip_safe=False,
keywords='',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT'
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
# test_suite='',
# test_requirements=[],
)