-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (51 loc) · 1.55 KB
/
setup.py
File metadata and controls
54 lines (51 loc) · 1.55 KB
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
from __future__ import absolute_import
import os
from setuptools import setup, find_packages
VERSION = '0.8'
BASEDIR = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(BASEDIR, 'README.rst')).read()
setup(
name='fixturegen',
version=VERSION,
packages=find_packages(),
include_package_data=True,
install_requires=[
"mako >= 1.0",
"click >= 3.0",
"sqlalchemy >= 0.6"
],
entry_points={
'console_scripts':
['fixturegen-sqlalchemy = fixturegen.cli:sqlalchemy'],
},
url='https://github.com/anton44eg/fixturegen',
download_url='https://github.com/anton44eg/fixturegen/archive/{0}.tar.gz'
.format(VERSION),
license='MIT',
author='Anton Simernia',
author_email='anton.simernya@gmail.com',
keywords=['fixture', 'sqlalchemy', 'testing'],
description='Fixture generator for fixture module',
long_description=README,
package_data={
'fixturegen': ['templates/*.mako'],
},
zip_safe=False,
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Testing',
'Topic :: Database',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
test_suite='test_fixturegen',
setup_requires=[
"flake8",
"nose>=1.0",
"coverage"
]
)