-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1.17 KB
/
setup.py
File metadata and controls
37 lines (34 loc) · 1.17 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
from setuptools import find_packages, setup
from backpack.version import version
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='python-backpack',
version=version,
description='Python Utilities',
author='Maximiliano Rocamora',
author_email='maxirocamora@gmail.com',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/MaxRocamora/python-backpack',
license='GNU GENERAL PUBLIC LICENSE',
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
],
python_requires='>=3.9',
package_data={
'': ['README.md'],
},
include_package_data=True,
test_suite='tests',
project_urls={
'Source': 'https://github.com/MaxRocamora/python-backpack',
},
)