forked from jsog/jsog-python
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
40 lines (33 loc) · 1.09 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, find_packages
setup(
name='jsog3',
version='2.0.4',
packages=['jsog3'],
author='Simon Eggler',
author_email='[email protected]',
url='https://github.com/simoneggler/jsog-python',
description='JSOG serializer and deserializer',
keywords='jsog json',
license='MIT License',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3'
],
package_data={
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.md'],
},
# metadata for upload to PyPI
project_urls={
"Bug Tracker": "https://github.com/simoneggler/jsog-python/issuespython",
"Documentation": "https://github.com/simoneggler/jsog-python/wiki",
"Source Code": "https://github.com/simoneggler/jsog-python",
},
extras_require={
':python_version == "2.7"': ['futures']
}
# could also include long_description, download_url, classifiers, etc.
)