-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (30 loc) · 934 Bytes
/
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
"""Setup.py file."""
from setuptools import find_packages, setup
setup(
name='pymap',
version='1.0.0',
description='pymap',
long_description="",
long_description_content_type='text/markdown',
license='Apache License 2.0',
author='Marco Giulini',
author_email='[email protected]',
url='https://github.com/mgiulini/pymap',
package_dir={'': 'src'},
packages=find_packages('src'),
include_package_data=True,
zip_safe=False,
# Some weblinks
project_urls={
'webpage': 'https://github.com/mgiulini/pymap',
'Documentation': 'https://github.com/mgiulini/pymap/README',
'Changelog': '',
'Issue Tracker': 'https://github.com/mgiulini/pymap/issues',
'Discussion Forum': 'https://github.com/mgiulini/pymap/issues',
},
keywords=[
'Information Theory',
'Entropy',
],
python_requires='>=3.9, <3.11',
)