forked from PyFilesystem/pyfilesystem2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (45 loc) · 1.33 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('fs/_version.py') as f:
exec(f.read())
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD 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',
]
with open('README.txt', 'r') as f:
DESCRIPTION = f.read()
REQUIREMENTS = [
"appdirs~=1.4.0",
"enum34~=1.1.6",
"pytz",
"setuptools",
"six~=1.10.0",
]
setup(
author="Will McGugan",
author_email="will@willmcgugan.com",
classifiers=CLASSIFIERS,
description="Filesystem abstraction layer",
install_requires=REQUIREMENTS,
extras_require={
":python_version<'3.5'": ['scandir~=1.5'],
},
license="BSD",
long_description=DESCRIPTION,
name='fs',
packages=find_packages(exclude=("tests",)),
platforms=['any'],
test_suite="nose.collector",
tests_require=['appdirs', 'mock', 'pytz', 'pyftpdlib'],
url="http://pypi.python.org/pypi/fs/",
version=__version__,
)