-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (34 loc) · 1.02 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
with open('fspatch/_version.py') as f:
exec(f.read())
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: System :: Filesystems',
]
REQUIREMENTS = [
"fs",
"setuptools"
]
setup(
author="Will McGugan",
author_email="will@willmcgugan.com",
classifiers=CLASSIFIERS,
description="Patch Python filesystem",
install_requires=REQUIREMENTS,
license="MIT",
name='fs-patch',
packages=find_packages(exclude=("tests",)),
platforms=['any'],
url="https://github.com/PyFilesystem/fspatch",
version=__version__,
)