-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (31 loc) · 1014 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
from setuptools import setup
# pylama:skip=1
setup(name='rsparam',
version='0.1.14',
description='Revit shared parameters utility',
long_description='Command line Tool for managing Revit Shared Parameters',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Utilities',
],
keywords='autodesk revit parameter cli',
url='https://github.com/eirannejad/rsparam',
author='Ehsan Iran-Nejad',
author_email='[email protected]',
license='MIT',
packages=['rsparam'],
install_requires=[
'docopt',
'colorful',
'tabulate',
],
entry_points={
'console_scripts': [
'rsparam = rsparam.cli:main',
],
},
zip_safe=False)