12 lines
306 B
Python
12 lines
306 B
Python
from setuptools import setup, find_namespace_packages
|
|
|
|
setup(
|
|
name='aidgaf',
|
|
version='1',
|
|
description='',
|
|
long_description='',
|
|
author='Adam Outler',
|
|
author_email='adamoutler@gmail.com',
|
|
license='IDGAF License',
|
|
packages=find_namespace_packages(include=['aidgaf-server.*'])
|
|
) |