-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (29 loc) · 1.02 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
#!/usr/bin/env python
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'requirements.txt'), encoding='utf-8') as f:
all_reqs = f.read().split('\n')
install_requires = [x.strip() for x in all_reqs]
setup(
name='coding-chalenge',
version='v1.0.0',
author='Davis Gaunt',
description='leet code evaluation programs',
url='https://github.com/DavisGauntUAH/Coding-Chalenge',
license='Apache 2.0',
classifiers=[
'Framework :: Pytest',
'Topics :: Evaluation',
'Licesnse :: Freeware',
'Programing Launguage :: Python :: 3+',
],
packages=find_packages(include=['longest_substring',
'next_permutation',
'reverse_nodes',
'two_numbers',
'zig_zag'
]),
include_package_data=True,
install_requires=install_requires,
)