-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (37 loc) · 1.18 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
49
50
51
52
53
54
55
56
# -*- coding: utf-8 -*-
from codecs import open
from setuptools import setup
from os import path
HERE = path.abspath(path.dirname(__file__))
def read(relpath):
with open(path.join(HERE, relpath), encoding="utf-8") as f:
return f.read().replace("\r\n", "\n")
setup(
name='scopes',
description='A container class for authorization scopes',
long_description="\n\n".join([
read("README.rst"),
"License\n-------",
read("LICENSE.rst")
]),
url='https://github.com/te-je/scopes',
author='Te-jé Rodgers',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
setup_requires=['setuptools_scm'],
use_scm_version=True,
py_modules=['scopes'],
install_requires=[],
extras_require={},
entry_points={},
)