-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
66 lines (52 loc) · 1.45 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
61
62
63
64
65
66
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
NAME = 'jirit'
PROJECT_ROOT, _ = os.path.split(__file__)
def read_file(name):
return open(os.path.join(PROJECT_ROOT, name)).read()
readme = read_file('README.rst')
changes = ''
install_requires = [
'jira==1.0.7',
'PyGithub==1.27.1',
'PyCrypto==2.6.1'
]
tests_requires = [
]
setup(
name=NAME,
version='1.3.5',
license='BSD',
# Packaging.
packages=find_packages(exclude=['tests']),
install_requires=install_requires,
provides=[NAME],
entry_points={
'console_scripts': [
'jirit = jirit.jirit_shell:main',
]
},
# You can install these using the following syntax, for example:
# $ pip install -e .[test]
extras_require={
'test': tests_requires,
},
include_package_data=True,
zip_safe=False,
# Metadata for PyPI.
description='Jirit is for getting stuff from Jira and Github.',
long_description='\n\n'.join([readme, changes]),
author='1%Club',
author_email='[email protected]',
platforms=['any'],
url='https://github.com/onepercentclub/jirit-py',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)