-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (30 loc) · 971 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
import datetime
import os
import sys
from setuptools import find_packages
from setuptools import setup
from io import open
# read the contents of the README file
with open('README.md', encoding="utf-8") as f:
long_description = f.read()
setup(
name='GalFlow',
description='GalSim reimplementation in TensorFlow',
long_description=long_description,
long_description_content_type='text/markdown',
author='DUI Contributors',
url='http://github.com/DiffentiableUniverseInitiative/GalFlow',
license='MIT',
packages=find_packages(),
install_requires=['tensorflow_addons'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Astronomy'
],
keywords='astronomy',
use_scm_version=True,
setup_requires=['setuptools_scm']
)