-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (32 loc) · 1.2 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
import os
# get __version__ from _version.py
ver_file = os.path.join('dynamicgem', '_version.py')
with open(ver_file) as f:
exec(f.read())
DISTNAME = 'dynamicgem'
INSTALL_REQUIRES = [i.strip() for i in open("requirements.txt").readlines()]
with open("README.md", "r") as fh:
long_description = fh.read()
VERSION = __version__
setuptools.setup(
name='dynamicgem',
version=VERSION,
author="Palash Goyal, Sujit Rokka Chhetri, Martinez Canedo, Arquimedes",
author_email="sujitchhetri@gmail.com",
description="A Python library for Dynamic Graph Embedding Methods",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Sujit-O/dynamicgem.git",
packages=setuptools.find_packages(exclude=['dataset', 'py-env', 'build', 'dist', 'venv','intermediate','output','dynamicgem.egg-info']),
package_dir={DISTNAME: 'dynamicgem'},
setup_requires=['sphinx>=2.1.2'],
install_requires=INSTALL_REQUIRES,
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)