-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
55 lines (47 loc) · 1.58 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
#!/usr/bin/env python
# -*- coding: utf-8 -*
import os
from codecs import open
from setuptools import find_packages, setup
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
with open('requirements.txt') as f:
install_requires = f.read().splitlines()
with open('requirements-dev.txt') as f:
dev_install_requires = [
line
for line in f.read().splitlines()
if not (line.startswith('-r') or line.startswith('#'))
]
with open('README.md', 'r', encoding='utf-8') as rm_file:
readme = rm_file.read()
with open('HISTORY.md', 'r', encoding='utf-8') as hist_file:
history = hist_file.read()
setup(
name='brunette',
version='0.2.9.dev0',
packages=find_packages(exclude=['tests*']),
include_package_data=True,
zip_safe=False,
description='A best practice Python code formatter',
author="O'Dwyer Software",
author_email='hello@odwyer.software',
url='https://github.com/ODwyerSoftware/brunette',
license='Apache 2.0',
long_description=readme + '\n\n' + history,
long_description_content_type='text/markdown',
install_requires=install_requires,
extras_require={'dev': dev_install_requires},
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
],
entry_points={
'console_scripts': [
'brunette = brunette.brunette:main',
]
},
)