-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (23 loc) · 773 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (23 loc) · 773 Bytes
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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
INSTALL_REQUIRES = [
]
def doSetup(install_requires):
setup(
name='docstring_expander',
version='0.23',
author='Joseph L. Hellerstein',
author_email='jlheller@uw.edu',
url='https://github.com/joseph-hellerstein/docstring_expander.git',
description='Enables intellisense for **kwargs',
long_description=long_description,
long_description_content_type='text/markdown',
packages=['docstring_expander'],
package_dir={'docstring_expander':
'docstring_expander'},
install_requires=install_requires,
include_package_data=True,
)
if __name__ == '__main__':
doSetup(INSTALL_REQUIRES)