-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
45 lines (40 loc) · 1.45 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
from os import path
from setuptools import setup, find_packages
if __name__ != '__main__':
exit()
root_dir = path.abspath(path.dirname(__file__))
with open(path.join(root_dir, 'README.rst')) as readme_file:
long_description = readme_file.read()
with open(path.join(root_dir, 'VERSION')) as version_file:
version = version_file.read().strip()
setup(
name='django-easycart',
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=False,
version=version,
license='MIT',
description='A flexible session-based shopping cart for Django',
long_description=long_description,
author='nevimov',
author_email='nevimov@gmail.com',
url='/~https://github.com/nevimov/django-easycart',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
],
keywords='django shopping cart basket trolley',
)