-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 851 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
32
__author__ = 'tara.hernandez'
import os
from setuptools import setup
from setuptools import setup, find_packages
#
# Only used this for my local pypi server, I don't currently push this to the public pypi
#
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "pony_script",
version = "0.3.1",
author = "Tara Hernandez",
author_email = "[email protected]",
scripts = ['pony'],
description = ("Log interrupts"),
license = "BSD",
keywords = "workflow",
url = "http://pypi.yourcompany.com:8080/simple",
install_requires = ['jira'],
packages = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
package_data={
'': [
'README.md'
]
},
# TODO: make it work later
# long_description=read('README.md')
)