-
Notifications
You must be signed in to change notification settings - Fork 168
/
Copy pathsetup.py
39 lines (33 loc) · 1.21 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
#!/usr/bin/env python
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='django-cart',
version='1.0.4',
description='Django simple shopping cart, tests and south migrations included',
long_description=long_description,
long_description_content_type="text/markdown",
maintainer='Bruno Carvalho',
maintainer_email='[email protected]',
license="GNU v3",
url='https://github.com/bmentges/django-cart',
packages=['cart', 'cart.migrations'],
install_requires=[
'Django>=1.1',
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
tes_suite="tests.run_tests.run_tests"
)