-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·37 lines (36 loc) · 1008 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
33
34
35
36
37
#!/usr/bin/env python
from setuptools import setup
setup(
name="witchcraft",
version="0.3.2",
description='',
author='Peter Facka',
author_email='pfacka@spookyowl.com',
url='https://github.com/spookyowl/witchcraft',
packages=[
'witchcraft',
'witchcraft.dateutil',
'witchcraft.dateutil.tz'
],
zip_safe=False,
install_requires=[
'psycopg2>=2.6.1',
'SQLAlchemy>=1.0.6',
'hy>=0.19',
'pyparsing>=2.1.1',
'unidecode'
],
provides=['witchcraft'],
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'License :: OSI Approved :: MIT License',
],
)