-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·35 lines (29 loc) · 912 Bytes
/
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
from setuptools import setup
def readme():
return open('README.md', 'r').read()
def requirements():
with open('requirements.txt', 'r') as f:
return f.readlines()
setup(
name='pydfu',
packages=['pydfu'],
version='0.1',
long_description=readme(),
description="Disk and File system query",
author='rrajaravi',
author_email='r.rajaravi@gmail.com',
url='https://github.com/rrajaravi/pydfu.git',
license="MIT",
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Development Status :: 1 - Planning',
'Environment :: Console',
'Intended Audience :: Science/Research',
],
install_requires=requirements(),
test_suite="tests",
scripts=['bin/pydfu']
)