-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (37 loc) · 1.66 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
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Description found in README.
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='gitnet',
version='0.1.1',
description='An analysis tool for git and other VCS managed open-source projects.',
long_description=long_description,
url='http://networkslab.org/gitnet',
download_url='https://github.com/networks-lab/gitnet',
author='Jillian Anderson, Joel Becker, Steve McColl, John McLevey',
license='GPL',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Topic :: Sociology',
'Topic :: Text Processing',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='research open-source github social-networks collaboration linux',
packages=find_packages(exclude=['tests']),
install_requires=['bash', 'networkx', 'matplotlib'],
test_suite='gitnet.tests',
)