-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
35 lines (33 loc) · 1.3 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
from setuptools import setup, find_packages
import sys, os
version = '1.1'
setup(name='TxScheduling',
version=version,
description="A scheduling plugin for Twisted",
long_description=open("README.rst").read() + "\n" +
open(os.path.join("docs", "CONTRIBUTORS.rst")).read() + "\n\n" +
open(os.path.join("docs", "HISTORY.rst")).read(),
classifiers=[
"Programming Language :: Python",
"Framework :: Twisted",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules"
],
keywords='twisted python scheduling cron',
author='Texas A&M University Library',
author_email='[email protected]',
maintainer='Benjamin Liles',
maintainer_email='[email protected]',
url='https://github.com/benliles/TxScheduling',
packages=find_packages(),
test_suite = 'txscheduling.tests.test_suite',
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'Twisted>=8',
'zope.interface',
])