-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
55 lines (47 loc) · 1.43 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
from setuptools import setup, find_packages
import os
from io import open
import versioneer
packagename = 'ltd-mason'
description = 'LSST the Docs build tool'
author = 'Jonathan Sick'
author_email = '[email protected]'
license = 'MIT'
url = 'https://github.com/lsst-sqre/ltd-mason'
def read(filename):
full_filename = os.path.join(
os.path.abspath(os.path.dirname(__file__)),
filename)
return open(full_filename, mode='r', encoding='utf-8').read()
long_description = read('README.rst')
setup(
name=packagename,
version=versioneer.get_version(),
description=description,
long_description=long_description,
url=url,
author=author,
author_email=author_email,
license=license,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords='lsst',
packages=find_packages(exclude=['docs', 'tests*', 'data']),
cmdclass=versioneer.get_cmdclass(),
install_requires=['ruamel.yaml',
'sh',
'boto3',
'jsonschema',
'requests'],
# package_data={},
entry_points={
'console_scripts': [
'ltd-mason = ltdmason.cli:run_ltd_mason',
'ltd-mason-travis = ltdmason.traviscli:run',
'ltd-mason-make-redirects = ltdmason.redirectdircli:run',
]
}
)