-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (20 loc) · 843 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r", encoding="utf-8") as fh:
requires = fh.read().split("\n")
requires = [r.strip() for r in requires if len(r.strip()) > 0]
requires = [r for r in requires if "${" not in r]
setup(
name='self_implementations',
packages=find_packages(),
version='0.1.0',
description='Module for self implememntations of research papers',
author='rustagiadi95',
license='MIT',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/rustagiadi95/self-implementations",
project_urls={"Bug Tracker": "https://github.com/rustagiadi95/self-implementations/issues"},
install_requires=requires,
)