-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (31 loc) · 1.22 KB
/
setup.py
File metadata and controls
37 lines (31 loc) · 1.22 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
__author__ = 'bagrat'
from setuptools import setup, find_packages
tests_require = ['nose', 'coverage']
install_requires = ['pyflect']
classifiers = ['License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Topic :: Software Development :: Libraries :: Python Modules']
config = {
'description': 'Access file system using objects',
'author': 'Bagrat Aznauryan',
'url': 'git@github.com:n9code/pyerarchy.git',
'download_url': 'git@github.com:n9code/pyerarchy.git',
'author_email': 'bagrat@aznauryan.org',
'version': '0.1',
'install_requires': install_requires,
'tests_require': tests_require,
'classifiers': classifiers,
'packages': find_packages(),
'name': 'pyerarchy',
'license': 'MIT',
'keywords': 'directory file object'
}
setup(**config)