-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1.09 KB
/
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
from setuptools import setup, find_packages
import vibhu4agarwal as vibhu
import pypandoc
with open('requirements.txt') as f:
requirements = f.readlines()
long_description = pypandoc.convert('README.md', 'rst')
setup(
name=vibhu.__name__,
version=vibhu.__version__,
author=vibhu.__author__,
author_email='[email protected]',
url='https://github.com/Vibhu-Agarwal/vibhu4agarwal',
description='Interactive Resume of Vibhu Agarwal.',
long_description=long_description,
long_description_content_type="text/markdown",
license='GPLv3+',
packages=find_packages(),
entry_points={
'console_scripts': [
'vibhu = vibhu4agarwal.vibhu:main'
]
},
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
),
keywords='resume portfolio vibhu4agarwal',
install_requires=requirements,
zip_safe=False
)