-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 770 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 770 Bytes
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
import os
from setuptools import setup, find_packages
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
with open('requirements.txt') as f:
install_requires = f.read().splitlines()
setup(
name='django-simple-activity',
version='1.1.1.dev0',
packages=find_packages('src', exclude=('tests',)),
package_dir={'': 'src'},
include_package_data=True,
license='Apache 2.0',
description=(
'Simple, generic, activity streams '
'from the actions on your site.'),
url='https://github.com/richardasaurus/django-simple-activity',
author='Richard O\'Dwyer',
author_email='[email protected]',
zip_safe=True,
install_requires=install_requires
)