-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
35 lines (27 loc) · 982 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
#!/usr/bin/env python3
# -*- coding:utf-8 -*-
# =============================================================================
# File Name: setup.py
# Author: DaiDai
# Mail: [email protected]
# Created Time: Thu Aug 15 17:50:36 2019
# =============================================================================
from setuptools import setup
from setuptools import find_packages
import setuptools
install_requires = []
with open("requirements.txt") as f:
for line in f.readlines():
install_requires.append(line.rstrip("\n"))
setup(
name="LeetCode.VIP",
version="0.1",
license = "",
author='DaiDai',
author_email='[email protected]',
long_description = "",
description = "This is a simple shell tool about algorithms problem \
information of LeetCode. This tool support linux and Mac OX.",
url='https://github.com/daidai21/LeetCode.VIP',
install_requires = install_requires,
)