This repository has been archived by the owner on Aug 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
/
setup.py
60 lines (54 loc) · 1.53 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import os
import sys
from setuptools import setup, find_packages
long_description = 'Please see our GitHub README'
if os.path.exists('README.txt'):
long_description = open('README.txt').read()
def getRequires():
deps = ['github3.py',
'requests',
'beautifulsoup4',
'sendgrid',
'python-dateutil',
'sqlalchemy',
'datetime',
'pyyaml',
'six',
'wheel',
'zope.interface',
'uritemplate',
'uritemplate.py',
'pytz',
'python-http-client']
if (3, 3) <= sys.version_info < (3, 6):
deps.append('pymysql')
return deps
base_url = 'https://github.com/sendgrid/'
setup(
name='open_source_library_data_collector',
version='1.1.0',
author='Elmer Thomas',
author_email='[email protected]',
url='{}open-source-library-data-collector'.format(base_url),
packages=find_packages(),
license='MIT',
description='Periodically capture external data relating to GitHub hosted '
'Open Source libraries',
long_description=long_description,
install_requires=getRequires(),
keywords=[
'GitHub',
'Open Source',
'ROI',
'Reporting',
'Package Managers'
],
classifiers=[
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
entry_points={
'console_scripts': ['osscollect=cli:cli'],
},
)