-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (21 loc) · 814 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
from setuptools import setup
with open('requirements.txt') as reqs_file:
reqs = reqs_file.read().splitlines()
setup(
# Needed to silence warnings (and to be a worthwhile package)
name='Measurements',
url='https://github.com/skrzypczykt/CycleGAN',
author='Tomasz Skrzypczyk',
author_email='[email protected]',
# Needed to actually package something
packages=['gans'],
# Needed for dependencies
install_requires= reqs,
# *strongly* suggested for sharing
version='0.1',
# The license can be anything you like
license='MIT',
description='An example of a python package from pre-existing code and existing gan implementation',
# We will also need a readme eventually (there will be a warning)
# long_description=open('README.txt').read(),
)