-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 914 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
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='arxivdigest',
version='1.0',
packages=find_packages(),
package_data={'arxivdigest.core.mail': ['templates/*.tmpl'],
'arxivdigest.frontend': ['templates/*.html',
'templates/macros/*',
'uncompiled_assets/css/*',
'uncompiled_assets/javascript/*',
'static/*',
'static/icons/*',
],
},
url='https://github.com/iai-group/arXivDigest',
author='Øyvind Jekteberg and Kristian Gingstad',
install_requires=requirements
)