-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 806 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
31
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
DEPENDENCYLINKS = []
REQUIRES = []
setup(
name='orgalytics',
description='Github Contribution for Organizations',
keywords='github',
version="0.0.1",
author='Caleb Groom',
author_email='[email protected]',
dependency_links=DEPENDENCYLINKS,
install_requires=REQUIRES,
entry_points={
'console_scripts': [
'orgalytics=orgalytics.entry_points:start'
]
},
tests_require=['tox'],
packages=find_packages(exclude=['bin', 'ez_setup']),
include_package_data=True,
namespace_packages=['orgalytics'],
license='Apache License (2.0)',
classifiers=["Programming Language :: Python"],
url='http://github.com/calebgroom/orgalytics'
)