-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (25 loc) · 933 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, find_packages
with open("README.md", mode='r', encoding='utf-8') as fh:
long_description = fh.read()
PROJECT_URLS = {
'Bug Tracker': 'https://github.com/ngocjr7/scoss/issues',
'Documentation': 'https://github.com/ngocjr7/scoss/blob/master/README.md',
'Source Code': 'https://github.com/ngocjr7/scoss'
}
with open('requirements.txt') as f:
install_requires = f.read().strip().split('\n')
setup(name='scoss',
description='A Source Code Similarity System',
author='Ngoc Bui',
long_description=long_description,
long_description_content_type="text/markdown",
author_email='ngocjr7@gmail.com',
project_urls=PROJECT_URLS,
version='0.0.5',
entry_points='''
[console_scripts]
scoss=scoss.cli:scoss_command
''',
packages=find_packages(),
install_requires=install_requires,
python_requires='>=3.6')