-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (43 loc) · 1.39 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
46
47
48
# -*- coding: utf-8 -*-
# pylint: disable=C0111
from __future__ import absolute_import
import os
from setuptools import setup
import envitro
# Get the long description from the relevant file
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
long_description = None
try:
with open(os.path.join(BASE_DIR, 'README-pypi.rst')) as f:
long_description = f.read()
except IOError:
pass
setup(
name='envitro',
version=envitro.__version__,
packages=['envitro'],
description='A module for reading and writing environment variables.',
long_description=long_description,
license='Apache 2',
author='Marc Meszaros',
author_email='[email protected]',
url='https://github.com/MarcMeszaros/envitro',
keywords=[
'config', 'environment', '12factor'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
setup_requires=['pytest-runner'],
tests_require=['pytest', 'mock'],
test_suite='tests',
)