-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 744 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 744 Bytes
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
#!/usr/bin/env python
from setuptools import find_packages, setup
EXCLUDE_FROM_PACKAGES = []
setup(
name='PyGraph',
version='0.3.0',
description="A graph manipulation library in pure Python",
url="https://github.com/jciskey/pygraph",
license="MIT",
author="Joe Ciskey",
author_email="forms@sleeplesshacker.com",
packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
]
)