-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (28 loc) · 1 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
from setuptools import find_packages, setup
import os
def fetch_readme():
with open('README-pypi.md', encoding='utf-8') as f:
text = f.read()
return text
def fetch_requirements():
filename = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'requirements.txt')
with open(filename, 'r') as f:
envs = [line.rstrip('\n') for line in f.readlines() if '@' not in line]
return envs
install_requires = fetch_requirements()
setup(name='fvmd',
version='1.0.0',
description='Frechet Video Motion Distance',
long_description=fetch_readme(),
long_description_content_type='text/markdown',
project_urls={
'Source': 'https://github.com/ljh0v0/FVMD-frechet-video-motion-distance',
},
entry_points={
'console_scripts': ['fvmd=fvmd.fvmd:main']
},
install_requires=install_requires,
packages=find_packages(),
include_package_data=True,
license='Apache Software License 2.0',
)