-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
35 lines (30 loc) · 951 Bytes
/
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
import os
from setuptools import setup, find_packages
from myapp import __version__
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
requirements = []
setup(
name = "My App",
version = ".".join(map(str, __version__)),
description = "",
long_description = read('README.rst'),
url = '',
license = 'MIT',
author = 'Full Name',
author_email = '[email protected]',
packages = find_packages(exclude=['tests']),
include_package_data = True,
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
#'Framework :: Django',
],
install_requires = requirements,
tests_require = [],
)