-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 810 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
from setuptools import setup
with open('README.md') as file:
long_desc = file.read()
setup(
name='where-does-this-go',
version='1.0.0',
packages=['wdtg'],
package_dir={'': 'src'},
python_requires=">=3.8",
description='Find out where that marketing URL actually goes',
long_description=long_desc,
url='https://github.com/cjbagley/where-does-this-go',
author='Colin Bagley',
author_email='[email protected]',
license='MIT',
install_requires=['requests'],
entry_points={
"console_scripts": [
"wdtg=wdtg.__main__:cli",
],
},
classifiers=[
'Intended Audience :: Developers',
'License :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
)