-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (39 loc) · 1.02 KB
/
setup.py
File metadata and controls
45 lines (39 loc) · 1.02 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
from setuptools import (
setup, find_packages
)
from rakmai import (
PROJECT, VERSION, AUTHOR
)
setup(
name=PROJECT,
version=VERSION,
description='rakmai',
url='http://github.com/pincoin/rakmai',
author=AUTHOR,
maintainer='rakmai maintainers',
license='MIT',
zip_safe=False,
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
packages=find_packages(exclude=['docs', 'tests']),
install_requires=[
'Django',
],
setup_requires=[
],
scripts=[
],
tests_require=[
],
test_suite='runtests.runtests',
),