-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (30 loc) · 943 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
31
32
33
34
35
36
37
38
39
40
41
"""The setup script."""
from setuptools import setup, find_packages
import os
import sys
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
os.system('rm -vrf ./build ./dist ./*.pyc ./*.pyo ./*.pyd ./*.tgz ./ *.egg-info `find -type d -name __pycache__`')
with open('README.md') as readme_file:
readme = readme_file.read()
with open('requirements.txt') as req:
req_list = req.readlines()
req_list = [sd.replace('\n', '') for sd in req_list]
requirements = req_list
test_requirements = ['pytest>=3']
setup(author="Birhanu Gebisa",
email="birhanugebisa@gmail.com",
python_requires='>=3.7.13',
classifiers=[
'Programming Language :: Python :: 3.7'
],
description="A Repository structure for all your project",
install_requires=requirements,
long_description=readme,
include_package_data=True,
keywords='scripts',
name='scripts',
)