-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 1 KB
/
Copy pathsetup.py
File metadata and controls
35 lines (31 loc) · 1 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='QuinnStruct',
version='0.2',
description='My personal data-struct library',
long_description='This is a data-structure library that I wrote in Python at CodeFellows in Summer 2019',
url='http://github.com/marvincolgin/quinnstruct',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='classic data structures',
author='Marvin Colgin',
author_email='me@marvincolgin.com',
license='GNU GPLv3',
packages=['quinnstruct'],
install_requires=[
'os',
'sys',
'inspect',
'typing',
'collections',
'json',
'enum'
],
include_package_data=True,
zip_safe=False)