-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
54 lines (43 loc) · 1.34 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup, find_packages
from resume_json import VERSION
def get_license():
with open('LICENSE') as f:
return f.read()
def get_long_description():
with open('README.md') as fh:
return fh.read()
def get_requirements():
with open('requirements.txt') as f:
requirements = f.readlines()
requirements = [requirement.strip() for requirement in requirements]
return requirements
LICENSE = get_license()
long_description = get_long_description()
setup(
maintainer='Moshe Nahmias',
maintainer_email='[email protected]',
name='resume-json-cli',
version=VERSION,
packages=find_packages(),
description='A project to work with resume json',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/moshe742/resume-json-python',
include_package_data=True,
python_requires='>=3.6',
project_urls={
'bug_tracker': 'https://github.com/moshe742/resume-json-python/issues',
# 'documentation': '',
},
entry_points={
'console_scripts': [
'resume_cli=resume_json.__main__:main',
]
},
install_requires=get_requirements(),
classifiers=[
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Topic :: Utilities'
]
)