forked from drgarcia1986/simple-settings
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (40 loc) · 1.28 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (40 loc) · 1.28 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
46
47
48
# -*- coding: utf-8 -*-
from setuptools import setup
def read(fname):
""" Return file content. """
with open(fname) as f:
content = f.read()
return content
description = 'A simple way to manage your project settings'
try:
long_description = read('README.md')
except IOError:
long_description = description
download_url = 'https://github.com/drgarcia1986/simple-settings/tarball/master'
setup(
name='simple-settings',
version='0.5.0',
install_requires=[],
url='https://github.com/drgarcia1986/simple-settings',
author='Diego Garcia',
author_email='drgarcia1986@gmail.com',
keywords='django flask bottle tornado settings configuration conf',
description=description,
long_description=long_description,
download_url=download_url,
packages=['simple_settings', 'simple_settings.strategies'],
package_dir={
'simple_settings': 'simple_settings',
'strategies': 'simple_settings/strategies'
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
extras_require={
'yaml': ['PyYAML==3.11']
}
)