- Timestamp:
- Sep 1, 2015 9:20:05 AM (9 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- f0d720b
- Parents:
- 40c5104 (diff), 600bea1 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
setup.py
r0e4e554 rcd5e29b 158 158 sys.path.append("docs/sphinx-docs") 159 159 import build_sphinx 160 161 build_sphinx.clean() 162 build_sphinx.retrieve_user_docs() 163 build_sphinx.apidoc() 164 build_sphinx.build() 160 build_sphinx.rebuild() 165 161 166 162 # sas module … … 207 203 ) ) 208 204 209 # sas.fit (park integration)205 # sas.fit 210 206 package_dir["sas.fit"] = os.path.join("src", "sas", "fit") 211 207 packages.append("sas.fit") … … 237 233 package_dir["sas.plottools"] = os.path.join("src", "sas", "plottools") 238 234 packages.append("sas.plottools") 239 240 # Park 1.2.1241 package_dir["park"]="park-1.2.1/park"242 packages.extend(["park"])243 package_data["park"] = ['park-1.2.1/*.txt', 'park-1.2.1/park.epydoc']244 ext_modules.append( Extension("park._modeling",245 sources = [ os.path.join("park-1.2.1",246 "park", "lib", "modeling.cc"),247 os.path.join("park-1.2.1",248 "park", "lib", "resolution.c"),249 ],250 ) )251 235 252 236 # sas models … … 360 344 361 345 package_dir["sas.sasview"] = "sasview" 362 package_data['sas.sasview'] = ['images/*', 'media/*', 'test/*', 346 package_data['sas.sasview'] = ['images/*', 347 'media/*', 348 'test/*.txt', 349 'test/1d_data/*', 350 'test/2d_data/*', 351 'test/save_states/*', 352 'test/upcoming_formats/*', 363 353 'default_categories.json'] 364 354 packages.append("sas.sasview") 365 355 366 356 required = [ 367 'bumps>=0.7.5. 4', 'periodictable>=1.3.1', 'pyparsing<2.0.0',357 'bumps>=0.7.5.6', 'periodictable>=1.3.1', 'pyparsing<2.0.0', 368 358 369 359 # 'lxml>=2.2.2', … … 386 376 version = VERSION, 387 377 description = "SasView application", 388 author = " University of Tennessee",389 author_email = " sansdanse@gmail.com",378 author = "SasView Team", 379 author_email = "developers@sasview.org", 390 380 url = "http://sasview.org", 391 381 license = "PSF", 392 382 keywords = "small-angle x-ray and neutron scattering analysis", 393 download_url = "https:// sourceforge.net/projects/sansviewproject/files/",383 download_url = "https://github.com/SasView/sasview.git", 394 384 package_dir = package_dir, 395 385 packages = packages,
Note: See TracChangeset
for help on using the changeset viewer.