-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (37 loc) · 1.17 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
#!/usr/bin/env python
import os
import sys
from setuptools import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py register sdist upload')
os.system('python setup.py register bdist_wheel upload')
sys.exit()
with open('README.rst', 'r') as f:
readme = f.read()
setup(
name="django-mysql-fuzzycount",
version="0.4",
description="Approximate query counts for MySQL and Django.",
license="MIT",
keywords="mysql orm django",
author="Chris Streeter",
author_email="[email protected]",
url="https://github.com/educreations/django-mysql-fuzzycount",
long_description=readme,
packages=["mysql_fuzzycount"],
package_dir={"mysql_fuzzycount": "mysql_fuzzycount"},
install_requires=[
"django >= 1.6",
"django-model-utils >= 1.4.0",
],
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
'Environment :: Web Environment',
'Framework :: Django',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development',
],
)