-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (44 loc) · 1.15 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
#!/usr/bin/env python
# yapf
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
install = (
"funcy>=1.10.2",
"pysistence>=0.4.1",
"patterns>=0.3",
"jsonpickle>=1.2",
"kingston>=0.7.2",
"astor>=0.8.1",
) # yapf: disable
develop = (
"pytest>=5.0.1",
"hypothesis>=4.24.3",
"altered_states>=1.0.9",
"pytest-cov>=2.7.1",
"ast2json>=0.2.1"
) # yapf: disable
setup(
name='ormsnack',
version='0.0.1',
description=next(line for line in open('README.org').readlines()
if line.startswith('* '))[2:],
packages=('ormsnack', ),
author='Jacob Oscarson',
author_email='jacob@414soft.com',
install_requires=install,
extras_require={
'test': install + develop,
},
license='MIT',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License (MIT)',
'Operating System :: OS Independent',
],
)