-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (54 loc) · 1.59 KB
/
setup.py
File metadata and controls
62 lines (54 loc) · 1.59 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# -*- coding: utf-8 -*-
import re
from setuptools import setup, find_packages
def get_info(pyfile):
'''Retrieve dunder values from a pyfile'''
info = {}
info_re = re.compile(r"^__(\w+)__ = ['\"](.*)['\"]")
with open(pyfile, 'r') as f:
for line in f.readlines():
match = info_re.search(line)
if match:
info[match.group(1)] = match.group(2)
return info
info = get_info('./fsfs/__init__.py')
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name=info['title'],
version=info['version'],
url=info['url'],
license=info['license'],
author=info['author'],
author_email=info['email'],
description=info['description'],
long_description=long_description,
install_requires=[
'click',
'fstrings',
'scandir',
'bands'
],
packages=find_packages(),
package_data={
'': ['LICENSE', 'README.rst'],
},
include_package_data=True,
entry_points={
'console_scripts': [
'fsfs = fsfs.__main__:cli'
]
},
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
),
)