-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (36 loc) · 1.21 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
from setuptools import setup
metadata = """
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Topic :: Utilities
Topic :: Scientific/Engineering
Topic :: Software Development :: Libraries :: Python Modules
License :: OSI Approved :: MIT License
Operating System :: OS Independent
"""
with open('README.md', 'r') as f:
long_description = f.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='aertb',
version="0.4.0",
author="Rafael Mosca",
author_email="rafael.mosca@mail.polimi.it",
url='https://github.com/rfma23',
# scripts=['bin/aertb_cli.py'],
entry_points={
'console_scripts': [
'aertb = cli.shell:aertb_shell',
],
},
packages=["cli", "aertb", "aertb.core", "aertb.core.loaders", "aertb.core.processing"],
install_requires = requirements,
keywords = ['aedat', 'aer', 'dat', 'event', 'camera'],
classifiers=list(filter(None, metadata.split('\n'))),
long_description=long_description,
long_description_content_type='text/markdown'
)