forked from Murali-group/GraphSpace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 861 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
from distutils.core import setup
from setuptools import find_packages
with open('README.md') as readme:
long_description = readme.read()
with open('requirements.txt') as reqs:
install_requires = [
line for line in reqs.read().split('\n') if (line and not
line.startswith('--'))
]
setup(
name = 'GraphSpace',
version = '1.1.0',
url = 'http://graphspace.org',
license = 'GNU GENERAL PUBLIC LICENSE',
author = 'adb',
author_email = '[email protected]',
description = 'The interactive graph sharing website.',
long_description=long_description,
packages=find_packages(),
include_package_data=True,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
],
zip_safe=False,
install_requires=install_requires
)